home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / gs24src.zip / FONTMAP < prev    next >
Text File  |  1992-02-27  |  8KB  |  236 lines

  1. %    Copyright (C) 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2. %    Distributed by Free Software Foundation, Inc.
  3. %
  4. % This file is part of Ghostscript.
  5. %
  6. % Ghostscript is distributed in the hope that it will be useful, but
  7. % WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. % to anyone for the consequences of using it or for whether it serves any
  9. % particular purpose or works at all, unless he says so in writing.  Refer
  10. % to the Ghostscript General Public License for full details.
  11. %
  12. % Everyone is granted permission to copy, modify and redistribute
  13. % Ghostscript, but only under the conditions described in the Ghostscript
  14. % General Public License.  A copy of this license is supposed to have been
  15. % given to you along with Ghostscript so you can know your rights and
  16. % responsibilities.  It should be in a file named COPYING.  Among other
  17. % things, the copyright notice and this notice must be preserved on all
  18. % copies.
  19.  
  20. % ----------------------------------------------------------------
  21.  
  22. % This file is a catalog of fonts known to Ghostscript.  Any font
  23. % that is to be loaded automatically when named must be in this catalog.
  24.  
  25. % Each font has an entry consisting of three items:
  26. %
  27. %    - The name by which the font is known inside Ghostscript
  28. %    (a Ghostscript literal name).  This is used to find the file
  29. %    from which a font of a given name should be loaded.
  30. %
  31. %    - The name of the Ghostscript font file (a Ghostscript string).
  32. %    The filename should include the extension, which (by convention)
  33. %    is `.gsf'.
  34. %
  35. %    - A terminating semicolon.
  36.  
  37. % Because of limitations in the MS-DOS environment, Ghostscript font
  38. % file names must be no more than 8 characters long, must consist only
  39. % of LOWER CASE letters, digits, and underscores, and must start with a
  40. % letter.  Font names, on the other hand, need only obey the syntax of
  41. % names in the Ghostscript language, which is much more liberal.
  42.  
  43. % Most of the Ghostscript fonts were created automatically from freely
  44. % available bitmaps.  There is a makefile (fonts.mak) that specifies
  45. % how this conversion was done.  fonts.mak also specifies, for each such
  46. % converted font, its uniqueID (an integer used to identify distinct fonts
  47. % within the Ghostscript font machinery), and its encoding (the mapping
  48. % from character codes in a string to character names).  For more detailed
  49. % information, read fonts.mak.
  50.  
  51. % The following table is actually a Ghostscript data structure.
  52. % If you add new entries, be sure to copy the punctuation accurately.
  53.  
  54. % A homemade font.
  55.  
  56. /Ugly                (uglyr.gsf)    ;
  57.  
  58.  
  59. % Fonts converted from bitmaps.
  60.  
  61. /AvantGarde-Book        (pagk.gsf)    ;
  62. /AvantGarde-BookOblique        (pagko.gsf)    ;
  63. /AvantGarde-Demi        (pagd.gsf)    ;
  64. /AvantGarde-DemiOblique        (pagdo.gsf)    ;
  65.  
  66. /Bookman-Light            (pbkl.gsf)    ;
  67. /Bookman-LightItalic        (pbkli.gsf)    ;
  68. /Bookman-Demi            (pbkd.gsf)    ;
  69. /Bookman-DemiItalic        (pbkdi.gsf)    ;
  70.  
  71. /Charter-Roman            (bchr.gsf)    ;
  72. /Charter-Italic            (bchri.gsf)    ;
  73. /Charter-Bold            (bchb.gsf)    ;
  74. /Charter-BoldItalic        (bchbi.gsf)    ;
  75.  
  76. % The converted Courier font has been replaced by a Type 1 font
  77. % contributed to the X11R5 distribution; see below.
  78. % Unfortunately, quite a few PostScript files use Courier-Oblique
  79. % rather than Courier-Italic, so we have to keep the old Obliques around.
  80. %/Courier            (pcrr.gsf)    ;
  81. /Courier-Oblique        (pcrro.gsf)    ;
  82. %/Courier-Bold            (pcrb.gsf)    ;
  83. /Courier-BoldOblique        (pcrbo.gsf)    ;
  84.  
  85. /Helvetica            (phvr.gsf)    ;
  86. /Helvetica-Oblique        (phvro.gsf)    ;
  87. /Helvetica-Narrow        (phvrrn.gsf)    ;
  88. /Helvetica-Bold            (phvb.gsf)    ;
  89. /Helvetica-BoldOblique        (phvbo.gsf)    ;
  90.  
  91. /NewCenturySchlbk-Roman        (pncr.gsf)    ;
  92. /NewCenturySchlbk-Italic    (pncri.gsf)    ;
  93. /NewCenturySchlbk-Bold        (pncb.gsf)    ;
  94. /NewCenturySchlbk-BoldItalic    (pncbi.gsf)    ;
  95.  
  96. /Palatino-Roman            (pplr.gsf)    ;
  97. /Palatino-Italic        (pplri.gsf)    ;
  98. /Palatino-Bold            (pplb.gsf)    ;
  99. /Palatino-BoldItalic        (pplbi.gsf)    ;
  100.  
  101. /Symbol                (psyr.gsf)    ;
  102.  
  103. /Times-Roman            (ptmr.gsf)    ;
  104. /Times-Italic            (ptmri.gsf)    ;
  105. /Times-Bold            (ptmb.gsf)    ;
  106. /Times-BoldItalic        (ptmbi.gsf)    ;
  107.  
  108. /ZapfChancery            (zcr.gsf)    ;
  109. /ZapfChancery-Oblique        (zcro.gsf)    ;
  110. /ZapfChancery-Bold        (zcb.gsf)    ;
  111.  
  112. /ZapfDingbats            (pzdr.gsf)    ;
  113.  
  114.  
  115. %
  116. % Type 1 fonts contributed to the X11R5 distribution.
  117. % These have UniqueIDs and file names of their own.
  118. %
  119.  
  120. % The following notice accompanied the Courier font:
  121. %
  122. %   IBM Courier - Copyright (c) IBM Corporation 1990, 1991
  123. %
  124. %   You are hereby granted permission under the terms of the IBM/MIT X
  125. %   Consortium Courier Typefont agreement to execute, reproduce,
  126. %   distribute, display, market, sell and otherwise transfer copies of
  127. %   the IBM Courier font to third parties.
  128. %
  129. %   The font is provided "AS IS" without charge.  NO WARRANTIES OR
  130. %   INDEMNIFICATION ARE GIVEN, WHETHER EXPRESS OR IMPLIED INCLUDING, BUT
  131. %   LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  132. %   A PARTICULAR PURPOSE.
  133.  
  134. /Courier        (cour.pfa)    ;
  135. /Courier-Italic        (couri.pfa)    ;
  136. /Courier-Bold        (courb.pfa)    ;
  137. /Courier-BoldItalic    (courbi.pfa)    ;
  138.  
  139. % The following notice accompanied the Utopia font:
  140. %
  141. %   Permission to use, reproduce, display and distribute the listed
  142. %   typefaces is hereby granted, provided that the Adobe Copyright notice
  143. %   appears in all whole and partial copies of the software and that the
  144. %   following trademark symbol and attribution appear in all unmodified
  145. %   copies of the software:
  146. %
  147. %           Copyright (c) 1989 Adobe Systems Incorporated
  148. %           Utopia (R)
  149. %           Utopia is a registered trademark of Adobe Systems Incorporated
  150. %
  151. %   The Adobe typefaces (Type 1 font program, bitmaps and Adobe Font
  152. %   Metric files) donated are:
  153. %
  154. %           Utopia Regular
  155. %           Utopia Italic
  156. %           Utopia Bold
  157. %           Utopia Bold Italic
  158.  
  159. /Utopia-Regular        (utrg.pfa)    ;
  160. /Utopia-Italic        (uti.pfa)    ;
  161. /Utopia-Bold        (utb.pfa)    ;
  162. /Utopia-BoldItalic    (utbi.pfa)    ;
  163.  
  164.  
  165. % Fonts converted from Hershey outlines.  These are constructed and
  166. % maintained manually.  Their entries here in the map contain a UniqueID
  167. % because the fonts themselves don't currently contain a UniqueID entry.
  168. % This is clearly wrong, and will be fixed someday.
  169. %
  170. % The UniqueID's and filenames are constructed differently for
  171. % these than for the ones above, because of the strange way that the Hershey
  172. % fonts were constructed.  The scheme for these looks like:
  173. % 42TTXY0
  174. % TT = typeface, X = ``class'', Y = variation
  175. % The typeface numbers are given above.
  176. % class:
  177. % 0 = normal            = r
  178. % 1 = simplex            = s
  179. % 2 = complex            = c
  180. % 3 = triplex            = t
  181. % variation:
  182. % 0 = normal            (omitted)
  183. % 1 = oblique            = o
  184. % 2 = italic            = i
  185. % 3 = bold            = b
  186. % 4 = bold oblique        = bo
  187. % 5 = bold italic        = bi
  188.  
  189. /Hershey-Gothic-English        (hrge_r.gsf)    4290000 ;
  190. /Hershey-Gothic-English-Bold    (hrge_rb.gsf)    4290030 ;
  191. /Hershey-Gothic-English-Oblique    (hrge_ro.gsf)    4290010 ;
  192.  
  193. /Hershey-Gothic-German        (hrgr_r.gsf)    4291000 ;
  194. /Hershey-Gothic-German-Bold    (hrgr_rb.gsf)    4291030 ;
  195. /Hershey-Gothic-German-Oblique    (hrgr_ro.gsf)    4291010 ;
  196.  
  197. /Hershey-Gothic-Italian        (hrit_r.gsf)    4292000 ; 
  198. /Hershey-Gothic-Italian-Bold    (hrit_rb.gsf)    4292030 ;
  199. /Hershey-Gothic-Italian-Oblique    (hrit_ro.gsf)    4292010 ;
  200.  
  201. /Hershey-Greek-Complex        (hrgk_c.gsf)    4293200 ;
  202. /Hershey-Greek-Simplex        (hrgk_s.gsf)    4293100 ;
  203.  
  204. /Hershey-Plain            (hrpl_r.gsf)    4294000 ;
  205. /Hershey-Plain-Bold        (hrpl_rb.gsf)    4294030 ;
  206. /Hershey-Plain-Oblique        (hrpl_ro.gsf)    4294010 ;
  207. /Hershey-Plain-Simplex        (hrpl_s.gsf)    4294100 ;
  208. /Hershey-Plain-Simplex-Bold    (hrpl_sb.gsf)    4294130 ;
  209. /Hershey-Plain-Simplex-Bold-Oblique (hrpl_sbo.gsf) 4294140 ;
  210. /Hershey-Plain-Simplex-Oblique    (hrpl_so.gsf)    4294110 ;
  211. /Hershey-Plain-Triplex        (hrpl_t.gsf)    4294300 ;
  212. /Hershey-Plain-Triplex-Italic    (hrpl_ti.gsf)    4294320 ;
  213. /Hershey-Plain-Triplex-Bold    (hrpl_tb.gsf)    4294330 ;
  214. /Hershey-Plain-Triplex-Bold-Italic (hrpl_tbi.gsf) 4294350 ;
  215.  
  216. /Hershey-Script-Complex        (hrsc_c.gsf)    4295200 ;
  217. /Hershey-Script-Complex-Bold    (hrsc_cb.gsf)    4295230 ;
  218. /Hershey-Script-Complex-Oblique    (hrsc_co.gsf)    4295210 ;
  219. /Hershey-Script-Simplex        (hrsc_s.gsf)    4295100 ;
  220. /Hershey-Script-Simplex-Bold    (hrsc_sb.gsf)    4295130 ;
  221. /Hershey-Script-Simplex-Oblique    (hrsc_so.gsf)    4295110 ;
  222.  
  223. % This font, and only this font among the Hershey fonts, uses
  224. % the SymbolEncoding.
  225. /Hershey-Symbol            (hrsy_r.gsf)    4296000 ;
  226.